home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / MTRECAL.PAK / MTRECALC.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  1KB  |  50 lines

  1. // mtrecalc.h : main header file for the MTRECALC application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1995 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __AFXWIN_H__
  14.     #error include 'stdafx.h' before including this file for PCH
  15. #endif
  16.  
  17. #include "resource.h"       // main symbols
  18.  
  19. #define WM_USER_RECALC_IN_PROGRESS (WM_USER + 1)
  20. #define WM_USER_RECALC_DONE (WM_USER + 2)
  21. #define WM_USER_RECALC_NOW (WM_USER + 3)
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CRecalcApp:
  25. // See mtrecalc.cpp for the implementation of this class
  26. //
  27.  
  28. class CRecalcApp : public CWinApp
  29. {
  30. public:
  31.     CRecalcApp();
  32.  
  33. // Overrides
  34.     // ClassWizard generate virtual function overrides
  35.     //{{AFX_VIRTUAL(CRecalcApp)
  36.     public:
  37.     virtual BOOL InitInstance();
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41.  
  42.     //{{AFX_MSG(CRecalcApp)
  43.     afx_msg void OnAppAbout();
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48.  
  49. /////////////////////////////////////////////////////////////////////////////
  50.